testing.common.output (field)

25 uses

	testing (current package)
		benchmark.go#L249: 		fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), b.name, b.output)
		benchmark.go#L262: 		if b.chatty != nil && (len(b.output) > 0 || finished) {
		benchmark.go#L264: 			fmt.Fprintf(b.w, "%s--- %s: %s\n%s", b.chatty.prefix(), tag, b.name, b.output)
		benchmark.go#L766: 				fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), benchName, b.output)
		benchmark.go#L779: 			if len(b.output) > 0 {
		benchmark.go#L781: 				fmt.Fprintf(b.w, "%s--- BENCH: %s\n%s", b.chatty.prefix(), benchName, b.output)
		benchmark.go#L897: 	for nlCount, j := 0, 0; j < len(b.output); j++ {
		benchmark.go#L898: 		if b.output[j] == '\n' {
		benchmark.go#L901: 				b.output = append(b.output[:j], "\n\t... [output truncated]\n"...)
		testing.go#L633: 	output      []byte               // Output generated by test or benchmark.
		testing.go#L815: 	if len(c.output) > 0 {
		testing.go#L820: 		args = append(args[:len(args):len(args)], c.output)
		testing.go#L821: 		c.output = c.output[:0]
		testing.go#L865: 			w.c.output = append(w.c.output, marker)
		testing.go#L868: 		w.c.output = append(w.c.output, indent...)
		testing.go#L869: 		w.c.output = append(w.c.output, line...)
		testing.go#L1169: 	o.c.output = append(o.c.output, indent...)
		testing.go#L1170: 	o.c.output = append(o.c.output, b...)